From: Keir Fraser Date: Fri, 16 Jan 2009 13:17:53 +0000 (+0000) Subject: x86: Fix the 32-bit build. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14014^2~51 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=9d2546d68336402ae08630fcac60b2b87578ade9;p=xen.git x86: Fix the 32-bit build. Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/mm/p2m.c b/xen/arch/x86/mm/p2m.c index a246ea2844..e9b1aead14 100644 --- a/xen/arch/x86/mm/p2m.c +++ b/xen/arch/x86/mm/p2m.c @@ -1999,7 +1999,7 @@ guest_physmap_add_entry(struct domain *d, unsigned long gfn, return 0; } - rc = gfn_check_limit(d, gfn, order); + rc = gfn_check_limit(d, gfn, page_order); if ( rc != 0 ) return rc;